Finds items containing any of the specified key values.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public abstract IndexQuery<T, TKey> FindKeys(
	IEnumerable<TKey> keys,
	Order order
)
Visual Basic
Public MustOverride Function FindKeys ( _
	keys As IEnumerable(Of TKey), _
	order As Order _
) As IndexQuery(Of T, TKey)

Parameters

keys
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'TKey>)>)>
The key values to search for.
order
Type: C1.LiveLinq..::..Order
Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required).

Return Value

An object enumerating all items whose key values belong to the specified key value collection.

Implements

IIndexScanner<(Of <(<'T, TKey>)>)>..::..FindKeys(IEnumerable<(Of <<'(TKey>)>>), Order)

See Also